home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue67 / construc / CServer.dpr < prev    next >
Encoding:
Text File  |  2001-01-31  |  321 b   |  16 lines

  1. program CServer;
  2. uses
  3.   Forms,
  4.   Unit1 in 'Unit1.pas' {Form1},
  5.   DrBob42_c in 'DrBob42_c.pas',
  6.   DrBob42_i in 'DrBob42_i.pas',
  7.   DrBob42_impl in 'DrBob42_impl.pas',
  8.   DrBob42_s in 'DrBob42_s.pas';
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Initialize;
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.Run;
  16. end.